func runtime.newobject
14 uses
runtime (current package)
arena.go#L179: e2 := newobject(et)
arena.go#L455: return newobject(typ)
malloc.go#L1327: func newobject(typ *_type) unsafe.Pointer {
map.go#L264: ovf = (*bmap)(newobject(t.Bucket))
map.go#L605: h.buckets = newobject(t.Bucket) // newarray(t.Bucket, 1)
map.go#L673: kmem := newobject(t.Key)
map.go#L678: vmem := newobject(t.Elem)
map.go#L1514: dst.buckets = newobject(t.Bucket)
map.go#L1522: dst.buckets = newobject(t.Bucket)
map_fast32.go#L110: h.buckets = newobject(t.Bucket) // newarray(t.bucket, 1)
map_fast32.go#L200: h.buckets = newobject(t.Bucket) // newarray(t.bucket, 1)
map_fast64.go#L110: h.buckets = newobject(t.Bucket) // newarray(t.bucket, 1)
map_fast64.go#L200: h.buckets = newobject(t.Bucket) // newarray(t.bucket, 1)
map_faststr.go#L221: h.buckets = newobject(t.Bucket) // newarray(t.bucket, 1)
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |